golang.org/x/net/http2.Framer.wbuf (field)
32 uses
golang.org/x/net/http2 (current package)
frame.go#L306: wbuf []byte
frame.go#L359: f.wbuf = append(f.wbuf[:0],
frame.go#L374: length := len(f.wbuf) - frameHeaderLen
frame.go#L378: _ = append(f.wbuf[:0],
frame.go#L386: n, err := f.w.Write(f.wbuf)
frame.go#L387: if err == nil && n != len(f.wbuf) {
frame.go#L402: f.debugFramerBuf.Write(f.wbuf)
frame.go#L411: func (f *Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
frame.go#L412: func (f *Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
frame.go#L413: func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
frame.go#L415: f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
frame.go#L749: f.wbuf = append(f.wbuf, byte(len(pad)))
frame.go#L751: f.wbuf = append(f.wbuf, data...)
frame.go#L752: f.wbuf = append(f.wbuf, pad...)
frame.go#L1179: f.wbuf = append(f.wbuf, p.BlockFragment...)
frame.go#L1180: f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)
frame.go#L1439: f.wbuf = append(f.wbuf, headerBlockFragment...)
frame.go#L1548: f.wbuf = append(f.wbuf, p.BlockFragment...)
frame.go#L1549: f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)